how to combine constructors in c#

75

how to combine constructors in c# -

public AccountService(ModelStateDictionary modelStateDictionary, string dataSourceID)
    : this(dataSourceID) //!!!
{
    this._modelState = modelStateDictionary;

}

Comments

Submit
0 Comments